home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / FIELDS.AWK < prev    next >
Text File  |  1990-02-08  |  107b  |  7 lines

  1. # Print a listing of line numbers
  2. # followed by number of fields per line.
  3.  
  4. {
  5.         print NR, NF
  6. }
  7.